home *** CD-ROM | disk | FTP | other *** search
- global gMasterData, checkMarks1, balloonSprite
-
- on bigButtons thisSprite
- leavePart1()
- case thisSprite of
- 3:
- goStyle()
- 4:
- startHistory()
- 5:
- startReactions()
- 6:
- goPRintro()
- 7:
- goCorners()
- end case
- end
-
- on firstPart1
- go(label("part1") - 1)
- goNarrator(gMasterData, "03")
- setFingerCursor(#on, [3, 4, 5, 6, 7])
- setCheckMarks()
- puppetSprite(balloonSprite, 1)
- end
-
- on setUpPart1
- setUserArea(gMasterData, #subMenu)
- go(label("part1"))
- setFingerCursor(#on, [3, 4, 5, 6, 7])
- setCheckMarks()
- puppetSprite(balloonSprite, 1)
- bkgrdMusic(gMasterData)
- end
-
- on leavePart1
- stopSound2()
- setFingerCursor(#off, [3, 4, 5, 6, 7])
- setPuppetState([15, 19], #c, 0)
- puppetSprite(balloonSprite, 0)
- set the timeoutScript to EMPTY
- end
-
- on setCheckMarks
- setPuppetState([15, 19], #c, 1)
- set Xart to 15
- set checkpoints to [point(591, 31), point(591, 120), point(591, 211), point(591, 301), point(591, 390)]
- repeat with X = 1 to count(checkMarks1)
- if getAt(checkMarks1, X) = 1 then
- set the loc of sprite Xart to getAt(checkpoints, X)
- else
- set the loc of sprite Xart to point(-1000, -1000)
- end if
- set Xart to Xart + 1
- end repeat
- updateStage()
- promptToGoOn()
- end
-
- on promptToGoOn
- set vTally to 0
- set vTotal to count(checkMarks1)
- repeat with vProp = 1 to vTotal
- if getAt(checkMarks1, vProp) = 1 then
- set vTally to vTally + 1
- end if
- end repeat
- if vTally > 0 then
- activate(gMasterData)
- end if
- case vTally of
- 0:
- set the timeoutLength to 30 * 60
- set the timeoutScript to "clickDummy1"
- vTotal:
- set the timeoutLength to 30 * 60
- set the timeoutScript to "clickDummy2"
- end case
- end
-
- on clickDummy1
- puppetSound("clik2begin.aif")
- end
-
- on clickDummy2
- puppetSound("gobkmain.aif")
- end
-